my file learn about tech container (docker, podman, kubernetes)
FROM alpine:3 RUN command RUN ["executable", "argument", "..."]
FROM alpine:3 RUN mkdir hello RUN echo "hello WOrld" > "hello/world.txt" RUN cat "hello/world.txt"